body {
  background-color: #150578;
  margin: 0;
  color: #ffffff;
  padding-top: 90px;
}
.navbar {
  background-color: #150578 !important;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.navbar-brand {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo {
  width: 35px;
  height: 35px;
  border-radius: 8px;
}
.nav-icon {
  width: 25px;
  height: 25px;
  border-radius: 5px;
  transition: transform 0.3s ease, filter 0.3s ease;
}
.navbar-nav .nav-link {
  color: #ffffff !important;
  font-weight: bold;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover {
  color: #ffffff !important;
}
.navbar-nav .nav-link:hover .nav-icon {
  transform: scale(1.2);
  filter: brightness(1.3);
}
.navbar-nav .active {
  color: #ffffff !important;
}
.cv-container {
  background-color: rgba(120, 192, 224, 0.6);
  margin: 30px auto;
  padding: 40px 60px;
  border-radius: 15px;
  width: 90%;
  max-width: 1300px;
  text-align: center;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.hero-section {
  background-color: rgba(21, 5, 120, 0.8);
  border-radius: 20px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  padding: 50px 20px;
  margin-bottom: 50px;
}
.hero-section h1 {
  font-weight: bold;
  font-size: 2.5rem;
}
.hero-section p {
  font-size: 1.2rem;
  color: #ffffff;
}
.section-title {
  color: #ffffff;
  border-bottom: 2px solid rgba(255,255,255,0.3);
  padding-bottom: 8px;
  margin-bottom: 15px;
  text-transform: uppercase;
}
.info-section {
  background-color: rgba(120, 192, 224, 0.4);
  padding: 20px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  text-align: left;
}
.info-section ul {
  list-style: none;
  padding: 0;
}
.experience-card {
  background-color: rgba(21, 5, 120, 0.6);
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 15px;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.photo-frame {
  width: 270px;
  height: 370px;
  border-radius: 20px;
  background-color: rgba(120, 192, 224, 0.6);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.skill-carousel {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.skill-logo {
  width: 140px;
  height: 140px;
  object-fit: contain;
  border-radius: 15px;
  background-color: rgba(120, 192, 224, 0.3);
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  margin: auto;
  transition: transform 0.3s ease;
}
.skill-logo:hover {
  transform: scale(1.1);
}
.slick-prev:before,
.slick-next:before {
  color: #ffffff;
  font-size: 25px;
}
.slick-dots li button:before {
  color: #ffffff;
  opacity: 0.7;
}
.slick-dots li.slick-active button:before {
  color: #78c0e0;
  opacity: 1;
}
.btn {
  background-color: rgba(120, 192, 224, 0.6);
  border: none;
  border-radius: 8px;
  padding: 10px 20px;
  color: #ffffff;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
}
.btn:hover {
  background-color: #150578;
  transform: scale(1.05);
}
footer {
  background-color: rgba(0, 26, 102, 0.9);
  text-align: center;
  padding: 15px 0;
  color: #ffffff;
  box-shadow: 2px 0 8px rgba(0,0,0,0.5);
  margin-top: 30px;
}
footer a {
  color: #99ccff;
  text-decoration: none;
  margin: 0 8px;
}
footer a:hover {
  text-decoration: underline;
}
@media (max-width: 992px) {
  .cv-container {
    padding: 30px;
  }
  .photo-frame {
    width: 220px;
    height: 300px;
  }
  .skill-logo {
    width: 120px;
    height: 120px;
  }
  .hero-section h1 {
    font-size: 2rem;
  }
}
@media (max-width: 768px) {
  .cv-container {
    padding: 25px;
  }
  .photo-frame {
    width: 200px;
    height: 250px;
  }
  .skill-logo {
    width: 100px;
    height: 100px;
  }
  .hero-section {
    padding: 35px 15px;
  }
}
@media (max-width: 480px) {
  .cv-container {
    padding: 20px;
  }
  .photo-frame {
    width: 180px;
    height: 220px;
  }
  .skill-logo {
    width: 80px;
    height: 80px;
  }
  .hero-section h1 {
    font-size: 1.8rem;
  }
  .hero-section p {
    font-size: 1rem;
  }
}
.dm-serif-text-regular {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: normal;
}
.dm-serif-text-regular-italic {
  font-family: "DM Serif Text", serif;
  font-weight: 400;
  font-style: italic;
}